home *** CD-ROM | disk | FTP | other *** search
- @echo off
- if not exist %1.pic goto error1
- if "%2" == "" goto error2
- pic2rgb %1
- if "%3" == "" pl286 rgb2gif.plb %1 %2 %2 %1
- if not "%3" == "" pl286 rgb2gif.plb %1 %2 %3 %1
- del /q %1.?8
- goto end
- :error1
- echo File %1.pic not found
- goto end
- :error2
- echo Missing width (height)
- :end
-